home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / tools / utils / smc_tt1 / inetcust.h < prev    next >
C/C++ Source or Header  |  1995-11-25  |  1KB  |  43 lines

  1. #ifndef _INET_IPCUST
  2. #define _INET_IPCUST
  3.  
  4.  
  5.  
  6. #define INETCUSTCOOKIE   0x49435354L        /* "ICST" */
  7.  
  8. #define MAXUSERNAME        16
  9. #define MAXNAME            64
  10. #define MAXHOSTNAME        16
  11.  
  12. typedef unsigned long INADDR;
  13. typedef char HADDR[6];
  14.  
  15. typedef struct
  16. {
  17.     long    magic;                /* magic to identify version */
  18.     HADDR    haddr;                /* my ethernet address          */
  19.     INADDR    inaddr;                /* my internet address       */
  20.     short    subnetbits;            /* number of subnet bits     */
  21.     short    tcpwnd;                /* default tcp window size   */
  22.     short    tcplowater;
  23.     long    netmem;                /* size of mem to hold buffers */
  24.     char    username[MAXUSERNAME];
  25.     char    hosts[64];            /* path to hosttable         */
  26.     char    passwd[64];            /* path to passwdfile         */
  27.     short    gmtoffs;            /* time zone offset          */
  28.     char    tzname[6];            /* timezone name             */
  29.     INADDR    timeserver[2];        /* ip adr of 2 timeservers   */ 
  30.     INADDR    nameserver[3];        /* ip adr of 3 nameservers   */
  31.     INADDR    gateway;            /* ip adr of gateway         */
  32.     char    hostname[MAXHOSTNAME];            /* name of this host */
  33.     char    domainname[MAXNAME];/* domainname of this host */
  34.     char    mailhost[MAXNAME];    /* mailhost name */
  35.     char    loginhost[MAXNAME];    /* default host */
  36.     char    printhost[MAXNAME];    /* printserver */
  37.     char    printdev[MAXHOSTNAME];            /* printer device */
  38.     
  39. } INETCUST;
  40.  
  41.  
  42.  
  43. #endif